00001 /* 00002 * @file bit_bang_uart.h 00003 * 00004 * @brief public methods for bit_bang_uart.c 00005 * 00006 * $Rev: 363 $ 00007 * $Author: dsmith $ 00008 * $Date: 2010-03-19 10:55:06 -0700 (Fri, 19 Mar 2010) $ 00009 * $URL: http://dsmith@ns.svnrepository.com/svn/hardware/fw/ZNP%20Examples/bit_bang_uart.h $ 00010 */ 00011 #ifndef BIT_BANG_UART_H 00012 #define BIT_BANG_UART_H 00013 00014 #define NO_CHARACTER_RECEIVED 0xFF 00015 00016 void bitBangOutput(unsigned char outputByte); 00017 char bitBangInput(); 00018 00019 #endif
1.6.3